home *** CD-ROM | disk | FTP | other *** search
/ Sprite 1984 - 1993 / Sprite 1984 - 1993.iso / src / lib / c / etc / RCS / initgroups.c,v < prev    next >
Text File  |  1988-08-15  |  1KB  |  75 lines

  1. head     1.1;
  2. access   ;
  3. symbols  ;
  4. locks    ; strict;
  5. comment  @ * @;
  6.  
  7.  
  8. 1.1
  9. date     88.08.15.11.41.35;  author mendel;  state Exp;
  10. branches ;
  11. next     ;
  12.  
  13.  
  14. desc
  15. @@
  16.  
  17.  
  18.  
  19. 1.1
  20. log
  21. @Initial revision
  22. @
  23. text
  24. @/*
  25.  * Copyright (c) 1983 Regents of the University of California.
  26.  * All rights reserved.  The Berkeley software License Agreement
  27.  * specifies the terms and conditions for redistribution.
  28.  */
  29.  
  30. #if defined(LIBC_SCCS) && !defined(lint)
  31. static char sccsid[] = "@@(#)initgroups.c    5.3 (Berkeley) 4/27/86";
  32. #endif LIBC_SCCS and not lint
  33.  
  34. /*
  35.  * initgroups
  36.  */
  37. #include <stdio.h>
  38. #include <sys/param.h>
  39. #include <grp.h>
  40.  
  41. struct group *getgrent();
  42.  
  43. initgroups(uname, agroup)
  44.     char *uname;
  45.     int agroup;
  46. {
  47.     int groups[NGROUPS], ngroups = 0;
  48.     register struct group *grp;
  49.     register int i;
  50.  
  51.     if (agroup >= 0)
  52.         groups[ngroups++] = agroup;
  53.     setgrent();
  54.     while (grp = getgrent()) {
  55.         if (grp->gr_gid == agroup)
  56.             continue;
  57.         for (i = 0; grp->gr_mem[i]; i++)
  58.             if (!strcmp(grp->gr_mem[i], uname)) {
  59.                 if (ngroups == NGROUPS) {
  60. fprintf(stderr, "initgroups: %s is in too many groups\n", uname);
  61.                     goto toomany;
  62.                 }
  63.                 groups[ngroups++] = grp->gr_gid;
  64.             }
  65.     }
  66. toomany:
  67.     endgrent();
  68.     if (setgroups(ngroups, groups) < 0) {
  69.         perror("setgroups");
  70.         return (-1);
  71.     }
  72.     return (0);
  73. }
  74. @
  75.